home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
usr
/
share
/
laptop-mode-tools
/
module-helpers
/
lm-polling-daemon
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2012-05-20
|
420 b
|
18 lines
#!/bin/sh
#
# This is the laptop mode tools polling daemon. It is used by the module
# battery-level-polling to periodically let laptop mode tools run and check
# the battery levels.
# Poll every 2.5 minutes. That ought to give a good balance between
# polling too often (which costs power) and polling too little (which
# risks data loss).
INTERVAL=150
while :; do
sleep $INTERVAL
/usr/sbin/laptop_mode auto
done